home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / HippoDraw / HippoDrawSrc1.1 / Hippo.subproj / PGroup.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-25  |  1.4 KB  |  50 lines

  1. /* PGroup.h    by Paul Kunz    March 1991
  2.  * Category extending the Group class
  3.  *
  4.  * Copyright (C)  1992  The Board of Trustees of
  5.  * The Leland Stanford Junior University.  All Rights Reserved.
  6.  */
  7.  
  8. #define PGROUP_H_ID "$Id: PGroup.h,v 1.7 1992/04/16 18:57:11 pfkeb Rel $"
  9.  
  10. #import "Group.h"
  11.  
  12. @interface Group(PGroup)
  13.  
  14. /* Each of the following methods performs the received message
  15.  * to each member of the group
  16.  */
  17. - addCutPlot:cutPlot;
  18. - addHTupleToList:list;
  19. - addPlotToList:list;
  20. - bindAxisW:(const void *) value;
  21. - bindAxisX:(const void *) value;
  22. - bindAxisXE:(const void *) value;
  23. - bindAxisY:(const void *) value;
  24. - bindAxisYE:(const void *) value;
  25. - bindCuts;
  26. - bindReference;
  27. - NameAxisW:(const void *) value;
  28. - NameAxisX:(const void *) value;
  29. - NameAxisY:(const void *) value;
  30. - NameAxisYE:(const void *) value;
  31. - replace:oldTuple with:newTuple;
  32. - replaceTupleWith:(const void *) value;
  33. - setAutoScaleX:(const int *) value;
  34. - setAutoScaleY:(const int *) value;
  35. - setAxesFlag:(const void *) value;
  36. - setColorType:(const void *) value;
  37. - setDispType:(const void *) value;
  38. - setDrawType:(const void *) value;
  39. - setGraphicView:view;
  40. - setLogScaleX:(const void *) value;
  41. - setLogScaleY:(const void *) value;
  42. - setNumBinsForAxisX:(const void *) value;
  43. - setNumBinsForAxisY:(const void *) value;
  44. - setRangeForAxisX:(const void *) value;
  45. - setRangeForAxisY:(NXPoint *) value;
  46. - setTitle:(const void *) value;
  47. - setTitlesFlag:(const void *) value;
  48.   
  49. @end
  50.